Setup
Folder Structure
├── apps/
│   ├── admin/ # Admin UI React App
│   ├── agent/ # Fulfillment Agent Application (React Native)
│   └── server/ # BPP Backend Server
│   └── webhook/ # BPP Webhook
├── packages/
│   ├── bpp-sdk/ # BPP SDK Library
│   └── shared-utils/ # Shared Utility Library
└── package.json
1. Fork it 🍴
2. Clone it 👥
git clone https://github.com/Sarfraz-droid/BPP-Boilerplate-SDK.git
3. Set it up ⬆️
- First, run 
yarnornpm installon root to install all dependencies - Go over to 
packages/bpp-sdkand runnpm run build 
4. Run it 🏁
- To run the admin app, go over to 
apps/adminand runyarn dev - To run the server app, go over to 
apps/serverand runyarn dev - To run the agent app, go over to 
apps/agentand runyarn start